Interpreter - определение. Что такое Interpreter
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое Interpreter - определение

Найдено результатов: 126
Interpreter (computing)         
  • static libraries]] are assembled into a new library or executable
PROGRAM THAT EXECUTES SOURCE CODE WITHOUT A SEPARATE COMPILATION STEP
Interpreted language; Interpreted Language; Interpreted programming language; Interpreter (computer software); Self-interpreter; Interpreter (programming); Interpreted (programming languages); Runtime interpreter; Evaluator; Metainterpreter; Interpretive language; Interpretive Languages; Interprted language; Interpreter (computer science); Interpreter computing; Interpreted computer language; Bytecode interpreter; Code interpretation; Interpretive programming language; Code interpreter; Interpreter (software); Abstract syntax tree interpreter; Compreter; Compiler-interpreter; Compiler–interpreter
In computer science, an interpreter is a computer program that directly executes instructions written in a programming or scripting language, without requiring them previously to have been compiled into a machine language program. An interpreter generally uses one of the following strategies for program execution:
evaluator         
  • static libraries]] are assembled into a new library or executable
PROGRAM THAT EXECUTES SOURCE CODE WITHOUT A SEPARATE COMPILATION STEP
Interpreted language; Interpreted Language; Interpreted programming language; Interpreter (computer software); Self-interpreter; Interpreter (programming); Interpreted (programming languages); Runtime interpreter; Evaluator; Metainterpreter; Interpretive language; Interpretive Languages; Interprted language; Interpreter (computer science); Interpreter computing; Interpreted computer language; Bytecode interpreter; Code interpretation; Interpretive programming language; Code interpreter; Interpreter (software); Abstract syntax tree interpreter; Compreter; Compiler-interpreter; Compiler–interpreter
<theory> Geoff Burn defines evaluators E0, E1, E2 and E3 which when applied to an expression, reduce it to varying degrees. E0 does no evaluation, E1 it evaluates to {weak head normal form} (WHNF), E2 evaluates the structure of a list, i.e. it evaluates it either to NIL or evaluates it to a CONS and then applies E2 to the second argument of the CONS. E3 evaluates the structure of a list and evaluates each element of the list to WHNF. This concept can be extended to data structures other than lists and forms the basis of the {evaluation transformer} style of strictness analysis. (1994-12-12)
interpreter         
  • Interpreting booths in the [[European Parliament]] where interpreters simultaneously interpret debates between the 24 official [[languages of the European Union]]
  • Nuremberg defendants]] at dock listening to simultaneous interpretation
  • operation]] to his [[servant]], who acts as an interpreter
  • Interpreting booths at a conference by the World Trade Organization 2017
  • Two sign language interpreters working for a school, 2007
  • Interpreter (left) next to Swedish filmmaker [[Johannes Nyholm]] at [[Buenos Aires International Festival of Independent Cinema]] 2019
  • Simultaneous interpreter's station (Televic Conference) at the [[European Court of Justice]]
  • [[Stéphane Brizé]] (second from the right) speaking in French in [[Buenos Aires]] in 2019. Seated to his left, the interpreter (on the extreme right) waits to translate into Spanish.
  • A US military interpreter sits with Afghan army soldiers, [[Ghazni province]].
FACILITATING OF ORAL OR SIGN-LANGUAGE COMMUNICATION BETWEEN USERS OF DIFFERENT LANGUAGES
Interpreter; Interpreter (communication); Interpreters; Interpretation (linguistics); Interpret; Interpreter (spoken language); Interperate; Simultaneous translation; Dubash; Intepreters; Misinterpretation; Interprets; Sign language interpreter; Consecutive Interpretation; Medical interpretation; Interpreting; Court Interpreter; American Sign Language Interpreting; American Sign Language interpreting; Language interpretations; Medical interpreter; Court interpreter
n.
1) to serve (smb.) as an interpreter
2) a conference; court; simultaneous interpreter
interpreter         
  • Interpreting booths in the [[European Parliament]] where interpreters simultaneously interpret debates between the 24 official [[languages of the European Union]]
  • Nuremberg defendants]] at dock listening to simultaneous interpretation
  • operation]] to his [[servant]], who acts as an interpreter
  • Interpreting booths at a conference by the World Trade Organization 2017
  • Two sign language interpreters working for a school, 2007
  • Interpreter (left) next to Swedish filmmaker [[Johannes Nyholm]] at [[Buenos Aires International Festival of Independent Cinema]] 2019
  • Simultaneous interpreter's station (Televic Conference) at the [[European Court of Justice]]
  • [[Stéphane Brizé]] (second from the right) speaking in French in [[Buenos Aires]] in 2019. Seated to his left, the interpreter (on the extreme right) waits to translate into Spanish.
  • A US military interpreter sits with Afghan army soldiers, [[Ghazni province]].
FACILITATING OF ORAL OR SIGN-LANGUAGE COMMUNICATION BETWEEN USERS OF DIFFERENT LANGUAGES
Interpreter; Interpreter (communication); Interpreters; Interpretation (linguistics); Interpret; Interpreter (spoken language); Interperate; Simultaneous translation; Dubash; Intepreters; Misinterpretation; Interprets; Sign language interpreter; Consecutive Interpretation; Medical interpretation; Interpreting; Court Interpreter; American Sign Language Interpreting; American Sign Language interpreting; Language interpretations; Medical interpreter; Court interpreter
<programming> A program which executes other programs. This is in contrast to a compiler which does not execute its input program (the "source code") but translates it into executable "machine code" (also called "object code") which is output to a file for later execution. It may be possible to execute the same source code either directly by an interpreter or by compiling it and then executing the {machine code} produced. It takes longer to run a program under an interpreter than to run the compiled code but it can take less time to interpret it than the total required to compile and run it. This is especially important when prototyping and testing code when an edit-interpret-debug cycle can often be much shorter than an edit-compile-run-debug cycle. Interpreting code is slower than running the compiled code because the interpreter must analyse each statement in the program each time it is executed and then perform the desired action whereas the compiled code just performs the action. This run-time analysis is known as "interpretive overhead". Access to variables is also slower in an interpreter because the mapping of identifiers to storage locations must be done repeatedly at run time rather than at compile time. There are various compromises between the development speed when using an interpreter and the execution speed when using a compiler. Some systems (e.g. some Lisps) allow interpreted and compiled code to call each other and to share variables. This means that once a routine has been tested and debugged under the interpreter it can be compiled and thus benefit from faster execution while other routines are being developed. Many interpreters do not execute the source code as it stands but convert it into some more compact internal form. For example, some BASIC interpreters replace keywords with single byte tokens which can be used to index into a {jump table}. An interpreter might well use the same {lexical analyser} and parser as the compiler and then interpret the resulting abstract syntax tree. There is thus a spectrum of possibilities between interpreting and compiling, depending on the amount of analysis performed before the program is executed. For example Emacs Lisp is compiled to "byte-code" which is a highly compressed and optimised representation of the Lisp source but is not machine code (and therefore not tied to any particular hardware). This "compiled" code is then executed (interpreted) by a {byte code interpreter} (itself written in C). The compiled code in this case is machine code for a virtual machine which is implemented not in hardware but in the byte-code interpreter. See also partial evaluation. (1995-01-30)
Interpreter         
  • Interpreting booths in the [[European Parliament]] where interpreters simultaneously interpret debates between the 24 official [[languages of the European Union]]
  • Nuremberg defendants]] at dock listening to simultaneous interpretation
  • operation]] to his [[servant]], who acts as an interpreter
  • Interpreting booths at a conference by the World Trade Organization 2017
  • Two sign language interpreters working for a school, 2007
  • Interpreter (left) next to Swedish filmmaker [[Johannes Nyholm]] at [[Buenos Aires International Festival of Independent Cinema]] 2019
  • Simultaneous interpreter's station (Televic Conference) at the [[European Court of Justice]]
  • [[Stéphane Brizé]] (second from the right) speaking in French in [[Buenos Aires]] in 2019. Seated to his left, the interpreter (on the extreme right) waits to translate into Spanish.
  • A US military interpreter sits with Afghan army soldiers, [[Ghazni province]].
FACILITATING OF ORAL OR SIGN-LANGUAGE COMMUNICATION BETWEEN USERS OF DIFFERENT LANGUAGES
Interpreter; Interpreter (communication); Interpreters; Interpretation (linguistics); Interpret; Interpreter (spoken language); Interperate; Simultaneous translation; Dubash; Intepreters; Misinterpretation; Interprets; Sign language interpreter; Consecutive Interpretation; Medical interpretation; Interpreting; Court Interpreter; American Sign Language Interpreting; American Sign Language interpreting; Language interpretations; Medical interpreter; Court interpreter
·noun One who or that which interprets, explains, or expounds; a translator; especially, a person who translates orally between two parties.
interpreter         
  • Interpreting booths in the [[European Parliament]] where interpreters simultaneously interpret debates between the 24 official [[languages of the European Union]]
  • Nuremberg defendants]] at dock listening to simultaneous interpretation
  • operation]] to his [[servant]], who acts as an interpreter
  • Interpreting booths at a conference by the World Trade Organization 2017
  • Two sign language interpreters working for a school, 2007
  • Interpreter (left) next to Swedish filmmaker [[Johannes Nyholm]] at [[Buenos Aires International Festival of Independent Cinema]] 2019
  • Simultaneous interpreter's station (Televic Conference) at the [[European Court of Justice]]
  • [[Stéphane Brizé]] (second from the right) speaking in French in [[Buenos Aires]] in 2019. Seated to his left, the interpreter (on the extreme right) waits to translate into Spanish.
  • A US military interpreter sits with Afghan army soldiers, [[Ghazni province]].
FACILITATING OF ORAL OR SIGN-LANGUAGE COMMUNICATION BETWEEN USERS OF DIFFERENT LANGUAGES
Interpreter; Interpreter (communication); Interpreters; Interpretation (linguistics); Interpret; Interpreter (spoken language); Interperate; Simultaneous translation; Dubash; Intepreters; Misinterpretation; Interprets; Sign language interpreter; Consecutive Interpretation; Medical interpretation; Interpreting; Court Interpreter; American Sign Language Interpreting; American Sign Language interpreting; Language interpretations; Medical interpreter; Court interpreter
(interpreters)
An interpreter is a person whose job is to translate what someone is saying into another language.
Aristide spoke to the press through an interpreter.
N-COUNT
interpreter         
  • Interpreting booths in the [[European Parliament]] where interpreters simultaneously interpret debates between the 24 official [[languages of the European Union]]
  • Nuremberg defendants]] at dock listening to simultaneous interpretation
  • operation]] to his [[servant]], who acts as an interpreter
  • Interpreting booths at a conference by the World Trade Organization 2017
  • Two sign language interpreters working for a school, 2007
  • Interpreter (left) next to Swedish filmmaker [[Johannes Nyholm]] at [[Buenos Aires International Festival of Independent Cinema]] 2019
  • Simultaneous interpreter's station (Televic Conference) at the [[European Court of Justice]]
  • [[Stéphane Brizé]] (second from the right) speaking in French in [[Buenos Aires]] in 2019. Seated to his left, the interpreter (on the extreme right) waits to translate into Spanish.
  • A US military interpreter sits with Afghan army soldiers, [[Ghazni province]].
FACILITATING OF ORAL OR SIGN-LANGUAGE COMMUNICATION BETWEEN USERS OF DIFFERENT LANGUAGES
Interpreter; Interpreter (communication); Interpreters; Interpretation (linguistics); Interpret; Interpreter (spoken language); Interperate; Simultaneous translation; Dubash; Intepreters; Misinterpretation; Interprets; Sign language interpreter; Consecutive Interpretation; Medical interpretation; Interpreting; Court Interpreter; American Sign Language Interpreting; American Sign Language interpreting; Language interpretations; Medical interpreter; Court interpreter
n.
Expounder, expositor.
interpreter         
  • Interpreting booths in the [[European Parliament]] where interpreters simultaneously interpret debates between the 24 official [[languages of the European Union]]
  • Nuremberg defendants]] at dock listening to simultaneous interpretation
  • operation]] to his [[servant]], who acts as an interpreter
  • Interpreting booths at a conference by the World Trade Organization 2017
  • Two sign language interpreters working for a school, 2007
  • Interpreter (left) next to Swedish filmmaker [[Johannes Nyholm]] at [[Buenos Aires International Festival of Independent Cinema]] 2019
  • Simultaneous interpreter's station (Televic Conference) at the [[European Court of Justice]]
  • [[Stéphane Brizé]] (second from the right) speaking in French in [[Buenos Aires]] in 2019. Seated to his left, the interpreter (on the extreme right) waits to translate into Spanish.
  • A US military interpreter sits with Afghan army soldiers, [[Ghazni province]].
FACILITATING OF ORAL OR SIGN-LANGUAGE COMMUNICATION BETWEEN USERS OF DIFFERENT LANGUAGES
Interpreter; Interpreter (communication); Interpreters; Interpretation (linguistics); Interpret; Interpreter (spoken language); Interperate; Simultaneous translation; Dubash; Intepreters; Misinterpretation; Interprets; Sign language interpreter; Consecutive Interpretation; Medical interpretation; Interpreting; Court Interpreter; American Sign Language Interpreting; American Sign Language interpreting; Language interpretations; Medical interpreter; Court interpreter
¦ noun
1. a person who interprets foreign speech orally.
2. Computing a program that can analyse and execute a program line by line.
Interpreter (journal)         
  • 150px
JOURNAL
Interpreter: A Journal of Mormon Scripture; Interpreter Foundation; Interpreter: A Journal of Latter-day Saint Faith and Scholarship; The Interpreter Foundation; Interpreter: A Journal of Latter-day Saint Faith & Scholarship; Interpreter: A Journal of Latter-Day Saint Faith and Scholarship; Interpreter: A Journal of Latter-Day Saint Faith & Scholarship
Interpreter: A Journal of Latter-day Saint Faith and Scholarship (formerly known as "Interpreter: A Journal of Mormon Scripture") is a nonprofit, peer-reviewed, and educational academic journal published by the Interpreter Foundation primarily covering topics related to the canon of scriptures of The Church of Jesus Christ of Latter-day Saints, Mormon studies, and Latter-day Saint apologetics. It was established in July 2012 by the Interpreter Foundation with Daniel C.
Ku (fictional language)         
2005 THRILLER MOVIE DIRECTED BY SYDNEY POLLACK
The interpreter; Ku (language); Ku (fictional language)
Ku is a fictional language appearing in the 2005 drama/thriller film The Interpreter. In the film, Ku is a language spoken in the fictional African country of Matobo.